<!-- ############################################## -->
<!-- Swipe file for part 2 of HTML/CSS Crash Course -->
<!-- ############################################## -->


<!-- Region 1: meta description and keywords tag for website -->

<meta name="description" content="Structured HTML and CSS page with navigation" />
<meta name="keywords" content="html, css, tutorial, practice, crash course" />



/* -- Region 2: .floatleft class -- */

.floatleft {
	float: left;
	width: 60%;
	padding: 10px;
}



/* -- Region 3: .floatright class -- */

.floatright {
    float: right;
    width: 30%;
    padding: 10px;
}